home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 38 / Amiga Format CD38 (1999-03-15)(Future Publishing)(GB)(Track 1 of 3)[!][issue 1999-04].iso / -in_the_mag- / reader_requests / dice_v3.15 / include / stddef.h < prev    next >
C/C++ Source or Header  |  1999-01-26  |  362b  |  23 lines

  1.  
  2. /*
  3.  * $VER: stddef.h 1.0 (17.4.93)
  4.  *
  5.  * (c)Copyright 1992 Obvious Implementations Corp, All Rights Reserved
  6.  */
  7.  
  8. #ifndef STDDEF_H
  9. #define STDDEF_H
  10.  
  11. #ifndef NULL
  12. #define NULL    ((void *)0L)
  13. #endif
  14. #ifndef offsetof
  15. #define offsetof(sname,fname)    ((long)&((sname *)0)->fname)
  16. #endif
  17. typedef int ptrdiff_t;
  18. typedef unsigned int size_t;
  19. typedef char wchar_t;
  20.  
  21. #endif
  22.  
  23.